home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / ntkb.zip / NTKB.EXE / Q99 / 7 / 43.TXT < prev    next >
Text File  |  1993-08-30  |  4KB  |  96 lines

  1. DOCUMENT:Q99743  18-AUG-1993  [W_NT]
  2. TITLE   :INF: Purpose of the BOOT.INI File
  3. PRODUCT :Windows NT
  4. PROD/VER:3.10
  5. OPER/SYS:WINDOWS
  6. KEYWORDS:
  7.  
  8. ------------------------------------------------------------------
  9. The information in this article applies to:
  10.  
  11.  - Microsoft Windows NT operating system version 3.1
  12. ------------------------------------------------------------------
  13.  
  14. The BOOT.INI file is used by Windows NT (specifically, NTLDR) to
  15. determine the operating system options to display during the startup
  16. (boot) process. BOOT.INI is flagged as a read-only, system file by
  17. default and should not require any manual modification. You can change
  18. its contents easily from Control Panel by choosing the System icon.
  19.  
  20. The following is a typical BOOT.INI file:
  21.  
  22.    [boot loader]
  23.    timeout=30
  24.    default=scsi(0)disk(0)rdisk(0)partition(1)\winnt
  25.  
  26.    [operating systems]
  27.    scsi(0)disk(0)rdisk(0)partition(1)\winnt = "Windows NT" /NODEBUG
  28.    C:\ = "Previous Operating System on C:\"
  29.  
  30. The following are line-by-line explanations of the above BOOT.INI
  31. file:
  32.  
  33.    [boot loader]
  34.    timeout = 30
  35.  
  36. Timeout specifies the amount of time Windows NT waits before choosing
  37. the default operating system.
  38.  
  39.    default=scsi(0)disk(0)rdisk(0)partition(1)\winnt
  40.  
  41. Default specifies the default operating system. Note: Whenever the
  42. operating system is Windows NT, the new storage path syntax is used.
  43. For more information on this syntax, query on the following words in
  44. the Microsoft Knowledge Base: 
  45.  
  46.    NT and GEOMETRY
  47.  
  48.    [operating systems]
  49.    scsi(0)disk(0)rdisk(0)partition(1)\winnt = "Windows NT" /NODEBUG
  50.    C:\ = "Previous Operating System on C:\"
  51.  
  52.    scsi(0) means that the primary controller (usually the only one) is
  53.    responsible for the device. If there were two SCSI cards and the disk
  54.    was hanging off the second one, it would be called scsi(1).
  55.  
  56.    disk(0) refers to physical disk 1.
  57.  
  58.    rdisk(0) - The rdisk() parameter refers to which SCSI logical unit
  59.    (LUN) to use, which could be a separate disk, but the vast majority of
  60.    SCSI setups have only one LUN per SCSI ID.
  61.  
  62.    partition(1) in this example is the only partition on the first drive
  63.    in the computer. If there were two partitions, C and D, C would be
  64.    partition(1) and D would be partition(2).
  65.  
  66.    \winnt is the directory that multi-boot will look at to boot from one
  67.    of the specified SCSI card's disk and partition.
  68.  
  69.    /NODEBUG specifies that there's no debugging information being
  70.    monitored. Debugging information is only useful for developers and
  71.    does slow down Windows NT somewhat.
  72.  
  73. The /SOS switch can be added to display driver names while they are
  74. being loaded during the Windows NT boot. By default, the OS Loader
  75. screen only echos progress dots.
  76.  
  77.    The Previous Operating System on C:\ implies that it is MS-DOS,
  78.    because "C:\" is an MS-DOS path. 
  79.  
  80. Additional reference words: 3.10
  81.  
  82. =============================================================================
  83.  
  84. THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS
  85. PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.  MICROSOFT DISCLAIMS
  86. ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES
  87. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN NO
  88. EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR
  89. ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL,
  90. CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF
  91. MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE
  92. POSSIBILITY OF SUCH DAMAGES.  SOME STATES DO NOT ALLOW THE EXCLUSION
  93. OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES
  94. SO THE FOREGOING LIMITATION MAY NOT APPLY.
  95.  
  96. Copyright Microsoft Corporation 1993.